home *** CD-ROM | disk | FTP | other *** search
/ Megarom / Megarom Macintosh CD Software (Quantum Leap)(1992).iso / COMMUNICATION / Term-Plus / Sample BMUG Script < prev    next >
Text File  |  1989-12-04  |  532b  |  37 lines

  1.  
  2. AutoType "ATDT849-2684^M"
  3. Set Timer 10
  4. @Label0
  5. If Prompt = "CONNECT" Then @Label1
  6. If Prompt = "NO CARRIER" Then @Stop
  7. If Timer Off Then @Stop
  8. GoTo @Label 0
  9.  
  10. @Label1
  11. If Prompt = "First Name?" Then @Label2
  12. GoTo @Label1
  13.  
  14. @Label2
  15. AutoType "George^M"
  16. @Label3
  17. If Prompt = "Last Name?" Then @Label4
  18. GoTo @Label3
  19.  
  20. @Label4
  21. AutoType "Jetson^M"
  22. @Label5
  23. If Prompt = "Is this correct?" Then @Label6
  24. GoTo @Label5
  25.  
  26. @Label6
  27. AutoType "y"
  28. @Label7
  29. If Prompt = "Enter Your Password:" Then @Label8
  30. GoTo @Label7
  31.  
  32. @Label8
  33. AutoType "Rastro^M"
  34.  
  35. @Stop
  36. Quit
  37.